Auto merge of #3730 - froydnj:cargo-version-dash-fix, r=alexcrichton
authorbors <bors@rust-lang.org>
Sat, 18 Feb 2017 05:06:59 +0000 (05:06 +0000)
committerbors <bors@rust-lang.org>
Sat, 18 Feb 2017 05:06:59 +0000 (05:06 +0000)
commit7d174f38ae48576725df6128f018e650f905e19d
tree4bd5722a6a6e9777dd4e27d494aef5b5912d25cd
parent0eff854cf1970856a9446d26823e36a7f9edb29b
parent635aa46987a439483bc67c5b2ddbee55880c30b4
Auto merge of #3730 - froydnj:cargo-version-dash-fix, r=alexcrichton

use space, not dash, in `cargo --version` output

 #3604 inadvertently changed the output format of `cargo --version`:

```
froydnj@hawkeye:~/src/cargo.git$ ./target/x86_64-unknown-linux-gnu/release/cargo --version
cargo-0.17.0-dev (ae4a4d8 2017-01-27)
froydnj@hawkeye:~/src/cargo.git$ cargo --version
cargo 0.16.0-nightly (6e0c18c 2017-01-27)
```

Note the dash between cargo and the version number in the newer version.

Let's put the space back to not break things that might depend on the
`--version` output.